home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / geom_lib / makefile.unx < prev    next >
Encoding:
Makefile  |  1993-12-30  |  597 b   |  27 lines

  1. #
  2. # This is the make file for the prsr. lib subdirectory.
  3. #
  4. #                Gershon Elber, Aug 1991
  5. #
  6.  
  7. include ../makeflag.unx
  8.  
  9. OBJS = bbox.o convex.o geomat3d.o geomvals.o intrnrml.o poly_cln.o
  10.  
  11. libgeom.a: $(OBJS)
  12.     rm -f libgeom.a
  13.     ar rcv libgeom.a *.o
  14.     -ranlib libgeom.a
  15.  
  16. install: libgeom.a
  17.     mv -f libgeom.a $(LIB_DIR)
  18.     cp *.h $(INC_DIR)
  19.  
  20. # Dependencies starts here - do not touch, generated automatically.
  21. bbox.o:    bbox.h
  22. convex.o:    convex.h poly_cln.h geomat3d.h intrnrml.h
  23. geomat3d.o:    convex.h geomat3d.h
  24. geomvals.o:    convex.h geomat3d.h geomvals.h
  25. intrnrml.o:    geomat3d.h intrnrml.h
  26. poly_cln.o:    poly_cln.h
  27.